home *** CD-ROM | disk | FTP | other *** search
/ Euroscene 2 / Euroscene 2.iso / USEFUL / libs / FileSys / XpkHandler / devs / Mountlist
Encoding:
Text File  |  1995-11-01  |  1.2 KB  |  34 lines

  1. /*
  2.  * Example mountlist entries for the XPK handler.
  3.  *
  4.  * These entries are built like normal handler entries, eg. PIPE:. The only
  5.  * speciality is the (mis)usage of the startup field (heavy magic). This
  6.  * field contains an argument string as ONE WORD with all necessary data the
  7.  * handler needs to know at startup time. All spaces MUST be represented by
  8.  * an underscore due to the limitations of the mount comand. To insert an
  9.  * underscore as normal character in the parameter string you have to use
  10.  * two underscores. This command line will be parsed according to the
  11.  * following standard AmigaDOS template:
  12.  *
  13.  *    ROOTDIR/A,VOLUMENAME/K,AUTOCOMPRESS/S,STEPDOWN/S,XPKPRIORITY/K,
  14.  *    PACKMETHOD/K,PASSWORD/K
  15.  *
  16.  * For a complete description of the options and their modifiers consult the
  17.  * file `ReadMe' coming along with this handler.
  18.  */
  19.  
  20. XPK:    Handler   = l:xpk-handler
  21.     Priority  = 0
  22.     StackSize = 4000
  23.     GlobVec   = -1
  24.     Mount     = 1
  25.     Startup   = ROOTDIR_"ram:"_VOLUMENAME_"Let's__nuke"_AUTOCOMPRESS_STEPDOWN_PACKMETHOD_"NUKE"
  26. #
  27. XEN:    Handler   = l:xpk-handler
  28.     Priority  = 0
  29.     StackSize = 4000
  30.     GlobVec   = -1
  31.     Mount     = 1
  32.     Startup   = ROOTDIR_"ram:"_VOLUMENAME_"Let's__encode"_AUTOCOMPRESS_STEPDOWN_PACKMETHOD_"ENCO"_PASSWORD_"Magic_word"
  33. #
  34.